home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr25 / quiz224.zip / QUIZ4.BAT < prev    next >
DOS Batch File  |  1995-01-13  |  1KB  |  33 lines

  1. echo off
  2. cls
  3. echo This is an  example  of using a batch file (.BAT) to start
  4. echo Create A Quiz  (QUIZ.EXE) and  instruct the program to run
  5. echo with an existing quiz file (SHARE.QZ) in the DISPLAY mode.
  6. echo.
  7. echo Once Create A Quiz  is loaded  into memory,  the user will
  8. echo be  prompted to enter  his/her name and address,  then the
  9. echo quiz SHARE.QZ will be run.
  10. echo.
  11. echo The command line instruction is:
  12. echo.
  13. echo QUIZ SHARE.QZ DISPLAY [ENTER]
  14. echo.
  15. echo Businesses: This DISPLAY  option is an excellent way to use
  16. echo Create A Quiz  as a  self-standing sales display, testing a
  17. echo possible  customer's  knowledge  of  your  products  and/or
  18. echo services.  A  log  of all  user's  names and  addresses are
  19. echo stored in an ASCII file called USER.LST for later retrieval
  20. echo and possible follow-ups.
  21. echo.
  22. pause
  23. cls
  24. echo This DISPLAY option will force Create A Quiz into an eternal
  25. echo loop,  that is, after 1 customer  has used the program,  the
  26. echo program will loop and prompt  for a new customer's name.  To
  27. echo exit this eternal looping feature, enter the word  "GOODBYE"
  28. echo at the "NAME" prompt when inside the program.  Don't forget!
  29. echo.
  30. echo Press CTRL+C to abort now, else
  31. pause
  32. QUIZ SHARE.QZ DISPLAY
  33.